home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 3.iso
/
dist
/
fw_qt3.idb
/
usr
/
freeware
/
Qt
/
examples
/
textedit
/
textedit.h.z
/
textedit.h
Wrap
C/C++ Source or Header
|
2002-04-08
|
2KB
|
85 lines
/****************************************************************************
** $Id: qt/textedit.h 3.0.3 edited Oct 12 12:18 $
**
** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef TEXTEDIT_H
#define TEXTEDIT_H
#include <qmainwindow.h>
#include <qmap.h>
class QAction;
class QComboBox;
class QTabWidget;
class QTextEdit;
class TextEdit : public QMainWindow
{
Q_OBJECT
public:
TextEdit( QWidget *parent = 0, const char *name = 0 );
private:
void setupFileActions();
void setupEditActions();
void setupTextActions();
void load( const QString &f );
QTextEdit *currentEditor() const;
void doConnections( QTextEdit *e );
private slots:
void fileNew();
void fileOpen();
void fileSave();
void fileSaveAs();
void filePrint();
void fileClose();
void fileExit();
void editUndo();
void editRedo();
void editCut();
void editCopy();
void editPaste();
void textBold();
void textUnderline();
void textItalic();
void textFamily( const QString &f );
void textSize( const QString &p );
void textStyle( int s );
void textColor();
void textAlign( QAction *a );
void fontChanged( const QFont &f );
void colorChanged( const QColor &c );
void alignmentChanged( int a );
void editorChanged( QWidget * );
private:
QAction *actionTextBold,
*actionTextUnderline,
*actionTextItalic,
*actionTextColor,
*actionAlignLeft,
*actionAlignCenter,
*actionAlignRight,
*actionAlignJustify;
QComboBox *comboStyle,
*comboFont,
*comboSize;
QTabWidget *tabWidget;
QMap<QTextEdit*, QString> filenames;
};
#endif